home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / cuj0593.zip / 1105086A < prev    next >
Text File  |  1993-05-16  |  200b  |  24 lines

  1. class B
  2.     {
  3. protected:
  4.     int j;
  5. private:
  6.     int k;
  7.     };
  8.  
  9. class D : public B
  10.     {
  11. public:
  12.     int foo();
  13.     };
  14.  
  15. int D::foo()
  16.     {
  17.     ++j;      // ok
  18.     return k; // error: k not accessible
  19.     }
  20.  
  21.  
  22.  
  23.  
  24.